home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / caxpy.c next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  259 b   |  13 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_caxpy (const int N, const void *alpha, const void *X, const int incX,
  7.          void *Y, const int incY)
  8. {
  9. #define BASE float
  10. #include "source_axpy_c.h"
  11. #undef BASE
  12. }
  13.